<?xml version="1.0" encoding="iso-8859-1"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

    <fo:layout-master-set>
        <fo:simple-page-master margin-right="20mm" 
            margin-left="20mm" margin-bottom="10mm" 
            margin-top="10mm" page-width="300mm" 
            page-height="400mm" master-name="page">

            <fo:region-body margin-right="0mm" 
                margin-left="0mm" margin-bottom="10mm" 
                margin-top="0mm"/>

         <fo:region-after extent="10mm"/>

        </fo:simple-page-master>
    </fo:layout-master-set>

    <fo:page-sequence master-name="page">
        <fo:flow flow-name="xsl-region-body">
  
            <fo:block space-after="12pt" font-weight="bold" 
                font-size="36pt" text-align="center">
                Insrer un lment graphique
            </fo:block>

            <fo:block text-align="center">
                <fo:external-graphic src="file:xslfo.jpg"/>
            </fo:block>

            <fo:block space-before="10pt" text-align="center" 
                font-size="24pt">
                Exemple dune image incorpore dans un document.
            </fo:block>

        </fo:flow>
    </fo:page-sequence>
</fo:root>
